home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / Application Events / ResumeEvent.h < prev    next >
Text File  |  1997-06-28  |  341b  |  24 lines

  1. // ResumeEvent.h
  2.  
  3. #ifndef ResumeEvent_h
  4. #define ResumeEvent_h
  5.  
  6. #ifndef Event_h
  7. #include "Event.h"
  8. #endif
  9.  
  10. class ResumeEvent: public Event
  11.   {
  12.     private:
  13.         bool convertClipboard;
  14.         
  15.     public:
  16.         ResumeEvent( const EventRecord& event );
  17.  
  18.         bool ConvertClipboard() const        { return convertClipboard; }
  19.  
  20.         virtual void Respond() const;
  21.   };
  22.  
  23. #endif
  24.